body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('eswirdimmerschlimmer.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    opacity: 0.5; /* 50% Deckkraft */
 }


body {
    font-family: Arial, sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

nav {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

button, select, input, a {
    border-radius: 5px;
    margin-right: 20px;
    margin-bottom: 20px;
}

button,a {
    background-color: #a40c04;
    border: none;
    padding: 10px 20px;
    color: #ecf0f1;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: medium;
    text-decoration:none
}

button:hover {
    background-color: #1b542c;
}

.page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 300px;
}

.block {
    margin-bottom: 20px;
}

h2 {
    margin-top: 20px;
}

#quote-box {
    background-color: #1b542c; /* Schwarz mit 80% Deckkraft */
    color: #ecf0f1;
    padding: 20px;
    border-radius: 5px; /* Abgerundete Ecken */
    max-width: 300px;
    text-align: center;
}

#result-countdown {
    background-color: #a40c04;
    color: #ecf0f1;

    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 40px;
    padding-left: 40px;

    width: 600px;
    border-radius: 20px;
}